home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / zip.zip / REVISION.H < prev    next >
Text File  |  1992-09-22  |  1KB  |  38 lines

  1. /*
  2.  
  3.  Copyright (C) 1990,1991 Mark Adler, Richard B. Wales, and Jean-loup Gailly.
  4.  Permission is granted to any individual or institution to use, copy, or
  5.  redistribute this software so long as all of the original files are included
  6.  unmodified, that it is not sold for profit, and that this copyright notice
  7.  is retained.
  8.  
  9. */
  10.  
  11. /*
  12.  *  revision.h by Mark Adler.
  13.  */
  14.  
  15. #define REVISION 10
  16. #define REVDATE "29 September 1991"
  17.  
  18. /* Copyright notice for binary executables--this notice only applies to
  19.  * those (zip, zipcloak, zipsplit, and zipnote), not to this file
  20.  * (revision.h).
  21.  */
  22.  
  23. #ifndef NOCPYRT
  24. char *copyright[] = {
  25. "Copyright (C) 1990,1991 Mark Adler, Richard B. Wales, and Jean-loup Gailly.",
  26. "Permission is granted to any individual or institution to use, copy, or",
  27. "redistribute this executable so long as it is not modified and that it is",
  28. "not sold for profit."
  29. };
  30. char *disclaimer[] = {
  31. "",
  32. "LIKE ANYTHING ELSE THAT'S FREE, ZIP AND ITS ASSOCIATED UTILITIES ARE",
  33. "PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR",
  34. "IMPLIED. IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES",
  35. "RESULTING FROM THE USE OF THIS SOFTWARE."
  36. };
  37. #endif /* !NOCPYRT */
  38.